:: t -> t1 -> t package:base

const x y always evaluates to x, ignoring its second argument.
>>> const 42 "hello"
42
>>> map (const 42) [0..3]
[42,42,42,42]
raise a number to a non-negative integral power